home *** CD-ROM | disk | FTP | other *** search
/ Designer's Club 1998 December / Designer's Club 1998 December.iso / pc / Idea Source / glass1.dir / 00151_Script_151 < prev    next >
Text File  |  1998-11-02  |  1KB  |  44 lines

  1. on mouseUp
  2.   if the visible of sprite 23 = true then
  3.     set the visible of sprite 23 to false
  4.     set the visible of sprite 24 to true
  5.     updatestage
  6.     exit
  7.   end if
  8.   
  9.   if the visible of sprite 24 = true then
  10.     set the visible of sprite 24 to false
  11.     set the visible of sprite 25 to true
  12.     updatestage
  13.     exit
  14.   end if
  15.   
  16.   if the visible of sprite 25 = true then
  17.     set the visible of sprite 25 to false
  18.     set the visible of sprite 26 to true
  19.     updatestage
  20.     exit
  21.   end if
  22.   
  23.   if the visible of sprite 26 = true then
  24.     set the visible of sprite 26 to false
  25.     set the visible of sprite 27 to true
  26.     updatestage
  27.     exit
  28.   end if
  29.   
  30.   if the visible of sprite 27 = true then
  31.     set the visible of sprite 27 to false
  32.     set the visible of sprite 28 to true
  33.     updatestage
  34.     exit
  35.   end if
  36.   
  37.   if the visible of sprite 28 = true then
  38.     set the visible of sprite 28 to false
  39.     set the visible of sprite 23 to true
  40.     updatestage
  41.     exit
  42.   end if
  43.   
  44. end